dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / Append Method / Append(Byte[],Int32,Int32) Method
The source data buffer.
The zero-based offset in the buffer from which to read the data.
The number of bytes to add.

In This Topic
    Append(Byte[],Int32,Int32) Method
    In This Topic
    Appends the supplied character data to the end current OracleLob instance.
    Syntax
    'Declaration
     
    Public Overloads Sub Append( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    public void Append( 
       byte[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    The source data buffer.
    offset
    The zero-based offset in the buffer from which to read the data.
    count
    The number of bytes to add.
    Remarks

    To write to the OracleLob you must have a local transaction started.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also